今天我們要來介紹的是留言版的第一頁,
我們先打開\app\router.php,
加入以下段的程式碼,
Route::get('message/insert', function()
{
//引入檔案
return View::make('message',array());
});
Route::post('message/insert', function()
{
$title = Input::get('title');
$content = Input::get('content');
echo "title is $title<br>";
echo "content is $content<br>";
//return View::make('message',array());
});
以上兩段程式碼的用途分別人產出畫面,
還有產出畫面的輸出值,
接下來我們就去設計我們的畫面檔,
打開app\views,
新增一個message.php的檔案,
輸入以下的畫面資料
<title>信息輸入</title>
<meta charset="UTF-8">
<style>
table{
margin: 10% 30% auto;
}
</style>
<form action="./insert" method="post">
<table>
<thead>
<tr>
<th><h2>留言板</h2></th>
</tr>
</thead>
<tr>
<td><input type="text" name="title" size="50"></td>
</tr>
<tr>
<td><textarea name="content" rows="30" cols="50"></textarea></td>
</tr>
<tr>
<td><input type="reset" value="清除"><input type="submit" value="送出"></td>
</tr>
</table>
</form>
這樣我們就可以在網址列中輸入,
網址/public/index.php/message/insert
這樣我們就可以看到我們設計的結果了,
以上就是今天我們介紹新增的頁面。